home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / Peter's Final Project / jpeg-5b / makefile.bcc < prev    next >
Makefile  |  1995-03-14  |  12KB  |  245 lines

  1. # Makefile for Independent JPEG Group's software
  2.  
  3. # This makefile is suitable for Borland C on MS-DOS or OS/2.
  4. # It works with Borland C++ for DOS, revision 3.0 or later,
  5. # and has been tested with Borland C++ for OS/2, revision 2.0.
  6. # Thanks to Tom Wright and Ge' Weijers (original DOS) and
  7. # Ken Porter (OS/2) for this file.
  8.  
  9. # Read installation instructions before saying "make" !!
  10.  
  11. # Are we under DOS or OS/2?
  12. !if !$d(DOS) && !$d(OS2)
  13. !if $d(__MSDOS__)
  14. DOS=1
  15. !else
  16. OS2=1
  17. !endif
  18. !endif
  19.  
  20. # The name of your C compiler:
  21. CC= bcc
  22.  
  23. # You may need to adjust these cc options:
  24. !if $d(DOS)
  25. CFLAGS= -O2 -mm -w-par -w-stu -w-ccc -w-rch
  26. !else
  27. CFLAGS= -O1 -w-par -w-stu -w-ccc -w-rch
  28. !endif
  29. # -O2 enables full code optimization (for pre-3.0 Borland C++, use -O -G -Z).
  30. # -O2 is buggy in Borland OS/2 C++ revision 2.0, so use -O1 for now.
  31. # -mm selects medium memory model (near data, far code pointers; DOS only!)
  32. # -w-par suppresses warnings about unused function parameters
  33. # -w-stu suppresses warnings about incomplete structures
  34. # -w-ccc suppresses warnings about compile-time-constant conditions
  35. # -w-rch suppresses warnings about unreachable code
  36. # Generally, we recommend defining any configuration symbols in jconfig.h,
  37. # NOT via -D switches here.
  38.  
  39. # Link-time cc options:
  40. !if $d(DOS)
  41. LDFLAGS= -mm
  42. # memory model option here must match CFLAGS!
  43. !else
  44. LDFLAGS=
  45. # -lai full-screen app
  46. # -lc case-significant link
  47. !endif
  48.  
  49. # Put here the object file name for the correct system-dependent memory
  50. # manager file.
  51. # For DOS, we recommend jmemdos.c and jmemdosa.asm.
  52. # For OS/2, we recommend jmemnobs.c (flat memory!)
  53. # SYSDEPMEMLIB must list the same files with "+" signs for the librarian.
  54. !if $d(DOS)
  55. SYSDEPMEM= jmemdos.obj jmemdosa.obj
  56. SYSDEPMEMLIB= +jmemdos.obj +jmemdosa.obj
  57. !else
  58. SYSDEPMEM= jmemnobs.obj
  59. SYSDEPMEMLIB= +jmemnobs.obj
  60. !endif
  61.  
  62. # End of configurable options.
  63.  
  64.  
  65. # source files: JPEG library proper
  66. LIBSOURCES= jcapi.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c jcmainct.c \
  67.         jcmarker.c jcmaster.c jcomapi.c jcparam.c jcprepct.c jcsample.c \
  68.         jdapi.c jdatasrc.c jdatadst.c jdcoefct.c jdcolor.c jddctmgr.c \
  69.         jdhuff.c jdmainct.c jdmarker.c jdmaster.c jdpostct.c jdsample.c \
  70.         jerror.c jutils.c jfdctfst.c jfdctflt.c jfdctint.c jidctfst.c \
  71.         jidctflt.c jidctint.c jidctred.c jquant1.c jquant2.c jdmerge.c \
  72.         jmemmgr.c jmemansi.c jmemname.c jmemnobs.c jmemdos.c
  73. # source files: cjpeg/djpeg applications, also rdjpgcom/wrjpgcom
  74. APPSOURCES= cjpeg.c djpeg.c rdcolmap.c rdppm.c wrppm.c rdgif.c wrgif.c \
  75.         rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c rdjpgcom.c \
  76.         wrjpgcom.c
  77. SOURCES= $(LIBSOURCES) $(APPSOURCES)
  78. # files included by source files
  79. INCLUDES= jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h jpegint.h \
  80.         jpeglib.h jversion.h cdjpeg.h cderror.h
  81. # documentation, test, and support files
  82. DOCS= README install.doc usage.doc cjpeg.1 djpeg.1 rdjpgcom.1 wrjpgcom.1 \
  83.         example.c libjpeg.doc structure.doc coderules.doc filelist.doc \
  84.         change.log
  85. MKFILES= configure makefile.cfg makefile.ansi makefile.unix makefile.manx \
  86.         makefile.sas makcjpeg.st makdjpeg.st makljpeg.st makefile.bcc \
  87.         makefile.mc6 makefile.dj makefile.mms makefile.vms makvms.opt
  88. CONFIGFILES= jconfig.cfg jconfig.manx jconfig.sas jconfig.st jconfig.bcc \
  89.         jconfig.mc6 jconfig.dj jconfig.vms
  90. OTHERFILES= jconfig.doc ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asm
  91. TESTFILES= testorig.jpg testimg.ppm testimg.gif testimg.jpg
  92. DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \
  93.         $(OTHERFILES) $(TESTFILES)
  94. # library object files common to compression and decompression
  95. COMOBJECTS= jcomapi.obj jutils.obj jerror.obj jmemmgr.obj $(SYSDEPMEM)
  96. # compression library object files
  97. CLIBOBJECTS= jcapi.obj jcparam.obj jdatadst.obj jcmaster.obj jcmarker.obj \
  98.         jcmainct.obj jcprepct.obj jccoefct.obj jccolor.obj jcsample.obj \
  99.         jchuff.obj jcdctmgr.obj jfdctfst.obj jfdctflt.obj jfdctint.obj
  100. # decompression library object files
  101. DLIBOBJECTS= jdapi.obj jdatasrc.obj jdmaster.obj jdmarker.obj jdmainct.obj \
  102.         jdcoefct.obj jdpostct.obj jddctmgr.obj jidctfst.obj jidctflt.obj \
  103.         jidctint.obj jidctred.obj jdhuff.obj jdsample.obj jdcolor.obj \
  104.         jquant1.obj jquant2.obj jdmerge.obj
  105. # These objectfiles are included in libjpeg.lib
  106. LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
  107. # object files for cjpeg and djpeg applications (excluding library files)
  108. COBJECTS= cjpeg.obj rdppm.obj rdgif.obj rdtarga.obj rdrle.obj rdbmp.obj
  109. DOBJECTS= djpeg.obj wrppm.obj wrgif.obj wrtarga.obj wrrle.obj wrbmp.obj \
  110.         rdcolmap.obj
  111.  
  112.  
  113. all: libjpeg.lib cjpeg.exe djpeg.exe rdjpgcom.exe wrjpgcom.exe
  114.  
  115. libjpeg.lib: $(LIBOBJECTS)
  116.     - del libjpeg.lib
  117.     tlib libjpeg.lib /E /C @&&|
  118. +jcapi.obj +jcparam.obj +jdatadst.obj +jcmaster.obj +jcmarker.obj &
  119. +jcmainct.obj +jcprepct.obj +jccoefct.obj +jccolor.obj +jcsample.obj &
  120. +jchuff.obj +jcdctmgr.obj +jfdctfst.obj +jfdctflt.obj +jfdctint.obj &
  121. +jdapi.obj +jdatasrc.obj +jdmaster.obj +jdmarker.obj +jdmainct.obj &
  122. +jdcoefct.obj +jdpostct.obj +jddctmgr.obj +jidctfst.obj +jidctflt.obj &
  123. +jidctint.obj +jidctred.obj +jdhuff.obj +jdsample.obj +jdcolor.obj &
  124. +jquant1.obj +jquant2.obj +jdmerge.obj +jcomapi.obj +jutils.obj &
  125. +jerror.obj +jmemmgr.obj &
  126. $(SYSDEPMEMLIB)
  127. |
  128.  
  129. cjpeg.exe: $(COBJECTS) libjpeg.lib
  130.     $(CC) $(LDFLAGS) -ecjpeg.exe $(COBJECTS) libjpeg.lib
  131.  
  132. djpeg.exe: $(DOBJECTS) libjpeg.lib
  133.     $(CC) $(LDFLAGS) -edjpeg.exe $(DOBJECTS) libjpeg.lib
  134.  
  135. rdjpgcom.exe: rdjpgcom.c
  136. !if $d(DOS)
  137.     $(CC) -ms -O rdjpgcom.c
  138. !else
  139.     $(CC) $(CFLAGS) rdjpgcom.c
  140. !endif
  141.  
  142. # On DOS, wrjpgcom needs large model so it can malloc a 64K chunk
  143. wrjpgcom.exe: wrjpgcom.c
  144. !if $d(DOS)
  145.     $(CC) -ml -O wrjpgcom.c
  146. !else
  147.     $(CC) $(CFLAGS) wrjpgcom.c
  148. !endif
  149.  
  150. # This "{}" syntax allows Borland Make to "batch" source files.
  151. # In this way, each run of the compiler can build many modules.
  152. .c.obj:
  153.     $(CC) $(CFLAGS) -c{ $<}
  154.  
  155. jconfig.h: jconfig.doc
  156.     echo You must prepare a system-dependent jconfig.h file.
  157.     echo Please read the installation directions in install.doc.
  158.     exit 1
  159.  
  160. clean:
  161.     - del *.obj
  162.     - del libjpeg.lib
  163.     - del cjpeg.exe
  164.     - del djpeg.exe
  165.     - del rdjpgcom.exe
  166.     - del wrjpgcom.exe
  167.     - del testout.*
  168.  
  169. test: cjpeg.exe djpeg.exe
  170.     - del testout.*
  171.     djpeg -dct int -ppm -outfile testout.ppm  testorig.jpg
  172.     djpeg -dct int -gif -outfile testout.gif  testorig.jpg
  173.     cjpeg -dct int -outfile testout.jpg  testimg.ppm
  174. !if $d(DOS)
  175.     fc /b testimg.ppm testout.ppm
  176.     fc /b testimg.gif testout.gif
  177.     fc /b testimg.jpg testout.jpg
  178. !else
  179.     echo n > n.tmp
  180.     comp testimg.ppm testout.ppm < n.tmp
  181.     comp testimg.gif testout.gif < n.tmp
  182.     comp testimg.jpg testout.jpg < n.tmp
  183.     del n.tmp
  184. !endif
  185.  
  186.  
  187. jcapi.obj : jcapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  188. jccoefct.obj : jccoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  189. jccolor.obj : jccolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  190. jcdctmgr.obj : jcdctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  191. jchuff.obj : jchuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  192. jcmainct.obj : jcmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  193. jcmarker.obj : jcmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  194. jcmaster.obj : jcmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  195. jcomapi.obj : jcomapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  196. jcparam.obj : jcparam.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  197. jcprepct.obj : jcprepct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  198. jcsample.obj : jcsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  199. jdapi.obj : jdapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  200. jdatasrc.obj : jdatasrc.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
  201. jdatadst.obj : jdatadst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
  202. jdcoefct.obj : jdcoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  203. jdcolor.obj : jdcolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  204. jddctmgr.obj : jddctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  205. jdhuff.obj : jdhuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  206. jdmainct.obj : jdmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  207. jdmarker.obj : jdmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  208. jdmaster.obj : jdmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  209. jdpostct.obj : jdpostct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  210. jdsample.obj : jdsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  211. jerror.obj : jerror.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jversion.h jerror.h
  212. jutils.obj : jutils.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  213. jfdctfst.obj : jfdctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  214. jfdctflt.obj : jfdctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  215. jfdctint.obj : jfdctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  216. jidctfst.obj : jidctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  217. jidctflt.obj : jidctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  218. jidctint.obj : jidctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  219. jidctred.obj : jidctred.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
  220. jquant1.obj : jquant1.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  221. jquant2.obj : jquant2.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  222. jdmerge.obj : jdmerge.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
  223. jmemmgr.obj : jmemmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  224. jmemansi.obj : jmemansi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  225. jmemname.obj : jmemname.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  226. jmemnobs.obj : jmemnobs.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  227. jmemdos.obj : jmemdos.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
  228. cjpeg.obj : cjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
  229. djpeg.obj : djpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
  230. rdcolmap.obj : rdcolmap.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  231. rdppm.obj : rdppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  232. wrppm.obj : wrppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  233. rdgif.obj : rdgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  234. wrgif.obj : wrgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  235. rdtarga.obj : rdtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  236. wrtarga.obj : wrtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  237. rdbmp.obj : rdbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  238. wrbmp.obj : wrbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  239. rdrle.obj : rdrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  240. wrrle.obj : wrrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
  241. rdjpgcom.obj : rdjpgcom.c jinclude.h jconfig.h
  242. wrjpgcom.obj : wrjpgcom.c jinclude.h jconfig.h
  243. jmemdosa.obj : jmemdosa.asm
  244.     tasm /mx jmemdosa.asm
  245.